home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 April / macformat-023.iso / Shareware City / Developers / RLaB / misc / gnuplothelp / plot < prev    next >
Encoding:
Text File  |  1994-10-22  |  1.9 KB  |  47 lines  |  [TEXT/????]

  1. plot:
  2.  
  3. Synopsis: RLaB graphics interface
  4.  
  5. Syntax: plot ( A, KeyTitles, I )
  6.  
  7. Description:
  8.  
  9.     The plot function plots numeric data via the GNUPLOT program. The
  10.     argument A can be a matrix, or a list of matrices, or a string.
  11.     When A is a matrix, columns 2 through N are plotted versus the 1st
  12.     column. When A is a list of matrices, each matrix is plotted
  13.     versus it's own 1st column. When A is a string, the string is sent
  14.     to GNUPLOT as a command.
  15.  
  16.     plot ( M )            plots the contents of matrix M
  17.     plot ( << M1 ; M2>> )        plots M1, and M2 on the same graph
  18.     plot ( "set noborder" )        sends the string directly to
  19.                     GNUPLOT as a command
  20.  
  21.     Using a list of matrices as an argument to plot is useful when the
  22.     the independent variable (1st column) of each matrix is different.
  23.  
  24.     The second and third, and optional argument to plot denotes the plot process
  25.     number and sends key-titles. The plot() function will open distinct plot
  26.     processes when given distinct values of N. When this feature is used in a
  27.     X-windows environment, the effect is to create separate plot windows.
  28.     The KeyTitles is a string-vector containing the titles to be plotted as keys.
  29.     They are chosen beginning at KeyTitles[1] and so on.
  30.     For example:
  31.  
  32.     plot ( M )            plot the contents if matrix M
  33.     plot ( 2.*M, 1 )        plot 2 times M, to another window
  34.     plot (<<M1;M2>>,2,KeyTitles)    plot M1, and M2 on the same graph in another
  35.                     window with the keytitles from KeyTitles
  36.  
  37.     If 'I' is not specified the default plot-window (0) is used.
  38.  
  39. See Also: splot, cont, pstring, postplot, latexplot,  printplot, 
  40. psave, pssave,  multiplot, nomultiplot, plotyy, noplotyy, pclose, 
  41. setterm, showplot, showpwin, replot, phelp, autoscale, 
  42. xrange, yrange, zrange, xtics, noxtics, ytics, noytics, 
  43. ztics, noztics, loglog, semilogx, semilogy, nolog, 
  44. xlabel, ylabel, zlabel, title, notitle, linestyle, pformat, 
  45. key, nokey, grid, nogrid, axis, noaxis, label, nolabel, time, notime
  46.  
  47.